切换主题
向量 a 的长度写作: ||a||
function len(x, y) { return Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2)) }
function len(...args) { return Math.sqrt([0, ...args].reduce((t, v) => t + Math.pow(v,2))) }
f2594c9
62a8093
21f5925
742f1e6
2b7fa82
cbb531b